This is the list of all the escape sequences Python supports. Đây là danh sách tất cả các ký tự thoát (escape sequence) được Python hỗ trợ:
Java language supports few special escape sequences for String and char literals as well. Ngôn ngữ Java cũng hỗ trợ một số dãy ký tự thoát (escape sequence) cho String và Char Literal:
For example, if the quote and escape characters are " and \, the input value "a""b\"c" will be interpreted Ví dụ, nếu ký tự trích dẫn và ký tự thoát là " và \, thì giá trị đầu vào là "a""b\"c" sẽ được thông dịch là a"b"c.
The Alt key should not be confused with the Altmode key (sometimes also labelled Alt) on some Teletype and ASCII terminals, which is a synonym for the ASCII escape character. Không nên nhầm lẫn phím Alt với phím Altmode (đôi khi cũng được gắn nhãn Alt) trên một số thiết bị đầu cuối Teletype và ASCII, là từ đồng nghĩa với ký tự thoát ASCII.
The Alt key should not be confused with the Altmode key (sometimes also labelled Alt) on some Teletype and ASCII terminals, which is a synonym for the ASCII escape character. Bạn không nên nhầm lẫn phím Alt với phím Altmode (đôi khi cũng được gắn nhãn Alt) trên một số thiết bị đầu cuối Teletype và ASCII, là từ đồng nghĩa với ký tự thoát ASCII.
The characters <, >, |, &, ^ are special command shell characters, and they must be preceded by the escape character (^) or enclosed in quotation marks when used in String (for example, "StringContaining&Symbol"). Các ký tự <,>, |, &, ^ là các ký tự bao của lệnh (command shell) đặc biệt và chúng phải được đặt trước ký tự thoát (^) hoặc được đặt trong dấu ngoặc kép khi được sử dụng trong chuỗi (ví dụ: "StringContained & Symbol").